func syscall.ptrace

10 uses

	syscall (current package)
		syscall_linux.go#L894: 		err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
		syscall_linux.go#L904: 		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
		syscall_linux.go#L921: 		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
		syscall_linux.go#L958: 	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
		syscall_linux.go#L969: 	return ptrace(PTRACE_CONT, pid, 0, uintptr(signal))
		syscall_linux.go#L973: 	return ptrace(PTRACE_SYSCALL, pid, 0, uintptr(signal))
		syscall_linux.go#L976: func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLESTEP, pid, 0, 0) }
		syscall_linux.go#L978: func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pid, 0, 0) }
		syscall_linux.go#L980: func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pid, 0, 0) }
		zsyscall_linux_amd64.go#L203: func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {